@charset "UTF-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: E5DDDB;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	font-size: small;
}
.oneColFixCtrHdr #container {
	text-align: left;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	width: 780px;
	background-color: #E5DDDB;
}
.oneColFixCtrHdr #header {
	background-color: #E5DDDB;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 1%;
	padding-left: 2%;
}
.oneColFixCtrHdr #header h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	padding-top: 1%;
	padding-right: 0;
	padding-bottom: .5%;
	padding-left: 0;
}
.oneColFixCtrHdr #mainContent {
	padding: 0 20px;
	background-color: E5DDDB;
}
.oneColFixCtrHdr #footer {
	padding: 0 10px;
	font-size: larger;
	background-color: E5DDDB;
}
.oneColFixCtrHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.h1 {font-size: large}
.paragraph {font-size: small}
.h2 {font-size: medium}
.style1 {
	color: #0C410A;
	font-weight: bold;
}

a:link {
	text-decoration: none;
	color: #0C410A;
}
a:visited {
	text-decoration: none;
	color: #8B943C;
}
a:hover {
	text-decoration: underline;
	color: #0000FF;
}
a:active {
	text-decoration: none;
	color: #0C410A;
}
